home *** CD-ROM | disk | FTP | other *** search
/ Master Visual Basic 3 / Master Visual Basic 3 (SAMS Publishing) (1994).ISO / mvprog / original / ch11 / myicon.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-03-20  |  1.4 KB  |  46 lines

  1. VERSION 2.00
  2. Begin Form frmMyIcon 
  3.    Caption         =   "The MyIcon Program"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   7365
  8.    Height          =   4425
  9.    Icon            =   MYICON.FRX:0000
  10.    Left            =   1035
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   4020
  13.    ScaleWidth      =   7365
  14.    Top             =   1140
  15.    Width           =   7485
  16.    Begin CommandButton cmdExit 
  17.       Caption         =   "E&xit"
  18.       Height          =   495
  19.       Left            =   360
  20.       TabIndex        =   1
  21.       Top             =   3360
  22.       Width           =   1215
  23.    End
  24.    Begin Label Label1 
  25.       Alignment       =   2  'Center
  26.       BackColor       =   &H00000000&
  27.       BorderStyle     =   1  'Fixed Single
  28.       Caption         =   "Minimize this window to see an animated icon"
  29.       FontBold        =   -1  'True
  30.       FontItalic      =   0   'False
  31.       FontName        =   "MS Sans Serif"
  32.       FontSize        =   12
  33.       FontStrikethru  =   0   'False
  34.       FontUnderline   =   0   'False
  35.       ForeColor       =   &H00FFFFFF&
  36.       Height          =   615
  37.       Left            =   960
  38.       TabIndex        =   0
  39.       Top             =   480
  40.       Width           =   5535
  41.    End
  42. Option Explicit
  43. Sub cmdExit_Click ()
  44.     End
  45. End Sub
  46.